#popLayer,#popLayer1 {
    display: block;
    background-color: #000;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 20;
    -moz-opacity: 0.5;
    opacity: .5;
    filter: alpha(opacity=50);
    height: 100%;
}
#popBox,#popBox1 {
    z-index: 21;
    position: fixed;
    text-align: center;
    margin: auto;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    border-radius: 10px;
    box-shadow: 0 6px 16px 0 rgba(0,0,0,0.15);
}


.login-container {
    padding: 40px;
    box-sizing: border-box;
    width: 400px;
    /* height: 348px; */
    flex-shrink: 0;
    border-radius: 10px;
    border: 2px solid #086AF1;
    background: #F5F5FF;
}
.login-container .close{
    position: absolute;
    right:4px;
    top:4px;
    cursor: pointer;
}
.login-tabs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 54px;
    
}

.login-tab-option {
    cursor: pointer;
    color: #555;
    transition: color 0.3s;
    position: relative;
    color: #595959;
    font-size: 20px;
    font-weight: normal;
}
.login-tab-option.active{
    color: #262626;
    font-weight: 600;
}
.login-tab-option.active::after {
    content: '';
    position: absolute;
    transform: translate(-50%,50%);
    bottom: -8px;
    color: #007bff;
    background: url(
    ../images/on-status.png) no-repeat;
    width: 42px;
    height:2px;
    left: 50%;
}
.login-content{
    padding-top: 40px;
}
.login-content .login-input-box.password-login .list,.login-content .login-input-box.sms-login .list{
    margin-bottom: 34px;
}
.login-content .login-input-box .list:last-child{
    margin-bottom:50px;
}
.login-input-box .list{
    position: relative;
}
.login-input-box .eye{
    background: url(../images/eye.png) no-repeat;
    background-size: 16px 16px;
    width: 16px;
    height: 16px;
    position: absolute;
    top:12px;
    right:12px;
}
.login-input-box .eye.eye-open{
    background: url(../images/eye-open.png) no-repeat;
    background-size: 16px 16px;
    width: 16px;
    height: 16px;
}
.login-input-box p.tips{
    color: #ff6759;
    font-size: 12px;
    position: absolute;
    padding-top: 2px;
    padding-left: 2px;
}
.login-input-box input::placeholder{
    color:rgba(89, 89, 89, 0.6)
}
.login-input-box input[type="text"],
.login-input-box input[type="password"] {
    outline:none;
    width: 100%;
    height: 40px;
    padding: 9px 12px;
    font-size: 14px;
    border-radius: 8px;
    border: 1px solid #608cff4d;
    background: #F8FAFF;
    box-sizing: border-box;
    color:#000;
}
.login-input-box input:focus{
    border: 1px solid #608CFF;
}

.login-content button{
    cursor: pointer;
    width: 100%;
    height:40px;
    border:none;
    color:#fff;
    border-radius: 4px;
    background: #086AF1;
    font-size: 14px;
    font-weight: 600;
}
.login-content button:hover{
    background: #087DF1;
}
.login-content .login-input-box.sms-login .list:first-child input{
    padding-left: 55px;
}
.login-content .login-input-box label {
    color:#262626;
    width: 43px;
    font-size: 14px;
    margin-right: 5px;
    position: absolute;
    top:10px;
    font-family: "Microsoft YaHei", "PingFang SC", "Heiti SC", sans-serif;
}
.login-content .login-input-box label em{
    font-style:normal;
    color:#e5e5e5;
    position: absolute;
    left: 42px;
}
.login-content .sms-login .yzm{
    cursor: pointer;
    color:#086AF1;
    font-size: 14px;
    position: absolute;
    right:12px;
    top:10px;
}
/* 隐藏非活动登录方式内容 */
.login-input-box:not(.active) {
    display: none;
}